home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / moden / examples / termdemo.dpr < prev    next >
Text File  |  1996-04-08  |  707b  |  26 lines

  1. {$I-,G+,X+,F+}
  2.  
  3. {Conditional defines that may affect this unit}
  4. {$I AWDEFINE.INC}
  5.  
  6. {*********************************************************}
  7. {*                   TERMDEMO.DPR 1.01                   *}
  8. {*        Copyright (c) TurboPower Software 1995         *}
  9. {*                 All rights reserved.                  *}
  10. {*********************************************************}
  11.  
  12. program Termdemo;
  13.  
  14. uses
  15.   Forms,
  16.   Tdmain in 'TDMAIN.PAS' {MainForm},
  17.   AdXPort in '..\ADXPORT.PAS' {ComPortOptions};                        {!!.01}
  18.  
  19. {$R *.RES}
  20.  
  21. begin
  22.   Application.CreateForm(TMainForm, MainForm);
  23.   Application.CreateForm(TComPortOptions, ComPortOptions);
  24.   Application.Run;
  25. end.
  26.